body {
  background-color: #a3cfda;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.auth-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  padding: 30px;
  position: relative;
  z-index: 1;
}

h4 {
  color: #60a3bc;
  text-align: center;
  margin-bottom: 1.5rem;
}

.slogan {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 8px;
  margin-bottom: 15px;
}

.btn-primary,
.btn-dark {
  background-color: #60a3bc;
  border: none;
  width: 100%;
}

.btn-primary:hover,
.btn-dark:hover {
  background-color: #4c8ca2;
}

.alert {
  border-radius: 6px;
  margin-bottom: 15px;
}

a {
  color: #60a3bc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.form-toggle {
  text-align: center;
  margin-top: 10px;
}

/* Responsive blob scaling */
@media (max-width: 768px) {
  body {
    background-size: 400px;
    background-position: top right;
  }
}
